/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
	width:48%;
	margin-left: 25%;
	float: left;
	overflow: hidden;
	padding: 0;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
	height: auto !important;
	max-width: none;
}
.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
	background:white; 
	filter:alpha(opacity=0); 
	opacity:0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	width:100%;
	z-index:8;
	padding: 5px 10px;
	opacity: 0.8;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.8;
	filter:alpha(opacity=8);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav{
	width: 100%;
	opacity: 0;
	z-index: 9;
	top: 50%;
	position: absolute;
	bottom: auto;
	left: 0;
	right: 0;
	cursor: pointer;
	       
	transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}
.nivo-directionNav a{
     font-size: 0;
     position: absolute; 
}
.nivoSlider:hover .nivo-directionNav {
	opacity: 1;
	transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}
.nivo-directionNav a.nivo-prevNav::before{
	z-index: 7;
	content: "\E314";
	font-family: "Material Icons";
	color: #fff;
	background-color: #ff9d00;
	padding: 2px;
	font-size: 20px;
	border-radius: 5px;
}
.nivo-directionNav a.nivo-nextNav::before{
	z-index: 7;
	content: "\E315";
	font-family: "Material Icons";
	color: #fff;
	background-color: #ff9d00;
	padding: 2px;
	border-radius: 5px;
	font-size: 20px;
	
}
.nivo-directionNav .nivo-prevNav:hover::before,.nivo-directionNav .nivo-nextNav:hover::before{
	background-color: #000;
}
.nivo-directionNav a:hover{
	opacity: 1;
}
.nivo-prevNav {
	left:100px;
	 transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}
.nivo-nextNav {
	right:100px;
	 transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}
.nivoSlider:hover .nivo-directionNav .nivo-prevNav {
	left: 15px;
	 transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}
.nivoSlider:hover .nivo-directionNav .nivo-nextNav {
	right: 15px;
	 transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}

.nivo-control {
    font-size: 0;
    border: 1px solid #cbcbcb;
    width: 8px;
    height: 8px;
    margin: 3px;
    border-radius: 50px;
    background-color: #cbcbcb;
    display: inline-block;
}
.nivo-control.active{
	background-color: #fff;
	border: 1px solid #7aa028;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	position: absolute;
	left: 0;
	right: 0;
	margin:0 auto;
	bottom: 0;
	text-align: center;
}
.nivo-controlNav a {
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}
@media (max-width: 991px) { 
	.nivoSlider{
		width: 62.5%;
		margin-left:20px;
	}
}